/-app
/-app/layout
/-app/splitter
Splitter.ts
/-app/tests
Application.ts
functions.ts
/-boot
boot.css
boot.d.ts
early-0.js
early-1-with-knockout.js
/-docs
/-features
/-imports
/-imports/knockout
/-imports/shims
es5-sham.min.js
es5-shim.min.js
/-storage
/-tests
/-typings
stringUtils.ts
teapo.html
1
<!doctype html>
2
<html>
3
<head>
4
<title>Teapo v0.5j</title>
5
 
6
<style>###base.css###</style>
7
<style>###boot/boot.css###</style> 
8
<style>###app/layout/TestPage.css###</style> 
9
 
10
</head>
11
<body>
12
 
13
<script>###boot/early-0.js###</script>
14
<script>###imports/shims/es5-shim.min.js###</script>
15
<script>###imports/shims/es5-sham.min.js###</script>
16
<script>###imports/knockout/knockout-3.0.0.js###</script>
17
<script>###boot/early-1-with-knockout.js###</script>
18
 
19
<!-- Knockout.js templates --->
20
<script id=Application type="text/html">###app/layout/Application.html###</script>
21
<script id=TestPage type="text/html">###app/layout/TestPage.html###</script>
22
<script id=TestCase type="text/html">###app/layout/TestCase.html###</script>
23
 
24
<script>
25
 
26
(function(teapo) {
27
 
28
try {
29
###app/Application.ts:build###
30
 
31
try {
32
  
33
  var splitter = new teapo.app.Splitter(document.body, 'teapo-splitter1');
34
  splitter.leftPanel.style.background = 'gold';
35
  splitter.leftPanel.style.opacity = '0.5';
36
  splitter.rightPanel.style.background = 'cornflowerblue';
37
  splitter.rightPanel.style.opacity = '0.5';
38
 
39
  
40
  var app = new teapo.app.Application();
41
}
42
catch (initError) {
43
  alert('Error in Teapo initialization: '+initError.message+' '+initError.stack);
44
}
45
 
46
}
47
catch (declarationError) {
48
  alert('Error in Teapo declaration: '+declarationError.message+' '+declarationError.stack);
49
}
50
 
51
 
52
})(teapo);
53
</script>
54
 
55
</body>
56
</html>